home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 27.zip / BS1 part 27 / ImageMaster_d3.adf / piarc.lzh.parta / GE_NMRRD.rexx < prev    next >
OS/2 REXX Batch file  |  1993-03-23  |  4KB  |  124 lines

  1. /*
  2.  * GE_NMRRD.rexx
  3.  *
  4.  *  Written by: Pete Patterson & Ben Williams
  5.  * Last Update: February 27th, 1993
  6.  *         For: Black Belt Systems Amiga image processing software "IM"
  7.  * --------------------------------------------------------------------
  8.  *    Revision: 2.00
  9.  */
  10.  
  11. parse arg fullname
  12. call pragma('stack',20000);
  13.  
  14. if ~show('L',"rexxsupport.library") then do
  15.   if ~addlib('rexxsupport.library',0,-30,0) then do
  16.     say 'We Have A Library Problem, Unable To Load "rexxsupport.library"';
  17.     say 'Cannot operate PI Modules without this library - sorry!';
  18.     'finish';
  19.     exit 10;
  20.     end;
  21.   end;
  22.  
  23. prtnme = 'IP_Port'; /* assume Image Professional */
  24. if show('P','IP_Port') = 0 then do
  25.   if show('P','IM_Port') = 0 then do
  26.     say "Can't find image processor's ARexx port!!!"; /* not running? */
  27.     say "This script requires IP, IM or IM F/c to run!";
  28.     exit(20);
  29.     end;
  30.   else do
  31.     prtnme = 'IM_Port';
  32.     end;
  33.   end;
  34.  
  35. cmdpath = 'c:';
  36. if open(fhandle,'rexx:picmdpath','read') then
  37.   do
  38.     cmdpath = readln(fhandle);
  39.     call close(fhandle);
  40.   end
  41.  
  42. if fullname = "" then
  43.   do
  44.     options results;
  45.     address command 'rx rxpi:GetFile.rexx';
  46.     if open(fhandle,'ram:IP_FNAME.tmp','read') then
  47.       do
  48.         fullname = readln(fhandle);
  49.         call close(fhandle);
  50.       end
  51.   end
  52.  
  53. thispath = gimmepath(fullname);
  54.  
  55. /* --------------------------------------------------------------------- */
  56. /* ------------- BEGINNING of format-specific ARexx code --------------- */
  57. /* --------------------------------------------------------------------- */
  58. address command cmdpath||'GE_NMRRD c "'||fullname||'"';
  59. if rc ~= 0 then do; address(prtnme); 'message "Cannot read '||fullname||' Error = '||rc||'"'; 'finish'; exit 0; end;
  60.  
  61.   address(prtnme);
  62.   options results;
  63.   'askyn '||'"LO/HI byte order" "HI/LO byte order"'
  64.   hilo = result;
  65.  
  66.   'askprop '||'"Ignore how many high order bits?" 3 0 4'
  67.   dbits = result;
  68.  
  69. 'imtofront';
  70. 'autoredraw 0';
  71. options results;
  72. 'newtargetted '||256||' '||256||' "'||gxname||'"'
  73. if rc ~= 0 then do; 'options'; "message Can't allocate buffer!"; 'autoredraw 1'; 'finish'; exit 0; end;
  74. bnum = result;
  75. 'backin '||bnum;
  76. plugadr = result;
  77. options;
  78. 'lockimage '||bnum;
  79. address command cmdpath||'GE_NMRRD d'||plugadr||' "'||fullname||'" '||dbits||' '||hilo;
  80. 'unlockimage '||bnum;
  81. 'imtofront';
  82. 'autoredraw 1';
  83. 'finish';
  84. exit 0;
  85.  
  86. /* --------------------------------------------------------------------- */
  87. /* ---------------- END of format-specific ARexx code ------------------ */
  88. /* --------------------------------------------------------------------- */
  89.  
  90. gimmepath:
  91.   arg fullnamegx;
  92.     tempgx = reverse(fullnamegx);
  93.     lengx = length(fullnamegx);   /* get length of string */
  94.     slashdex = index(tempgx,'/'); /* first occurance of '/' from right */
  95.     colondex = index(tempgx,':');  /* first occurance of ':' from right */
  96.     seploc = 0; /* assumes current dir, no path supplied */
  97.     if slashdex ~= 0 then do /* we assume we are in a DIR */
  98.       seploc = (lengx - slashdex)+1;
  99.       end;
  100.     else do
  101.       if colondex ~= 0 then do /* we assume we are on a device */
  102.         seploc = (lengx - colondex)+1;
  103.         end;
  104.       end;
  105.   gxname = substr(fullnamegx,seploc+1); /* if you ever need it */
  106.   gxpath = left(fullnamegx,seploc);
  107.   return(gxpath);
  108.  
  109. expandfilename:
  110.   parse arg jfile;
  111.   if index(jfile,':') = 0 then do
  112.     curdir = pragma(D);
  113.     if right(curdir,1) ~= ':' then do
  114.       if right(curdir,1) ~= '/' then do
  115.         if curdir ~= '' then do
  116.           curdir = curdir || '/';
  117.           end;
  118.         end;
  119.       end;
  120.     jfile = curdir||jfile;
  121.     end;
  122.   return(jfile);
  123.  
  124.